home *** CD-ROM | disk | FTP | other *** search
/ Sky at Night 2007 June / SAN CD 6-2007 CD-ROM 25.iso / pc / Software / AstroGrav_Win / Java / jre1.6.0 / lib / rt.jar / java / text / Annotation.class (.txt) next >
Encoding:
Java Class File  |  2006-11-29  |  647 b   |  18 lines

  1. package java.text;
  2.  
  3. public class Annotation {
  4.    private Object value;
  5.  
  6.    public Annotation(Object var1) {
  7.       this.value = var1;
  8.    }
  9.  
  10.    public Object getValue() {
  11.       return this.value;
  12.    }
  13.  
  14.    public String toString() {
  15.       return this.getClass().getName() + "[value=" + this.value + "]";
  16.    }
  17. }
  18.